home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form UserInfo
- BackColor = &H00C0C0C0&
- Caption = "UserInfo"
- ClientHeight = 1965
- ClientLeft = 3675
- ClientTop = 3330
- ClientWidth = 3735
- Height = 2370
- Left = 3615
- LinkTopic = "Form1"
- ScaleHeight = 1965
- ScaleWidth = 3735
- Top = 2985
- Width = 3855
- Begin CommandButton Ok
- Caption = "Ok"
- Default = -1 'True
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 330
- Left = 1185
- TabIndex = 4
- Top = 1215
- Width = 1275
- End
- Begin TextBox Email
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 285
- Left = 1110
- TabIndex = 3
- Text = "zthomas@activexpert.com"
- Top = 615
- Width = 2370
- End
- Begin TextBox UserName
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 285
- Left = 1110
- TabIndex = 2
- Text = "Zane Thomas"
- Top = 255
- Width = 2370
- End
- Begin Label Label1
- Alignment = 1 'Right Justify
- BackColor = &H00C0C0C0&
- Caption = "Emial:"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 285
- Index = 1
- Left = -255
- TabIndex = 1
- Top = 585
- Width = 1200
- End
- Begin Label Label1
- Alignment = 1 'Right Justify
- BackColor = &H00C0C0C0&
- Caption = "User Name:"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 285
- Index = 0
- Left = -240
- TabIndex = 0
- Top = 285
- Width = 1200
- End
- Option Explicit
- Private Sub Email_GotFocus ()
- email.SelStart = 0
- email.SelLength = Len(email.Text)
- End Sub
- Private Sub Ok_Click ()
- g_emailaddr = email.Text
- Unload Me
- End Sub
- Private Sub UserName_GotFocus ()
- UserName.SelStart = 0
- UserName.SelLength = Len(UserName.Text)
- End Sub
-